home *** CD-ROM | disk | FTP | other *** search
/ Let's Discover Louisiana / Let's Discover Louisiana.iso / pc / FILES / TIME.dxr / 00343_ClearTwister2.ls < prev    next >
Encoding:
Text File  |  2002-12-03  |  484 b   |  21 lines

  1. global retFrame, guess1, guess2, guess3
  2.  
  3. on mouseUp me
  4.   if (guess1 = 0) and (guess2 = 0) and (guess3 = 0) then
  5.     puppetSound(4, "Wrong")
  6.     sprite(102).visible = 0
  7.     sprite(103).visible = 0
  8.   else
  9.     if the frameLabel = "EndGame" then
  10.       sprite(102).visible = 0
  11.       sprite(103).visible = 0
  12.       go(marker("Twister2"))
  13.     else
  14.       sprite(102).visible = 0
  15.       sprite(103).visible = 0
  16.       retFrame = the frame
  17.       go(marker("Twister2Drop"))
  18.     end if
  19.   end if
  20. end
  21.